home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / network / daemons / nfs / nfs-serv.2be / nfs-serv / nfs-server-2.2beta16 / rmtab.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-25  |  523 b   |  25 lines

  1. /*
  2.  * rmtab.h    Support for rmtab manipulations.
  3.  *
  4.  */
  5.  
  6.  
  7. #ifndef RMTAB_H
  8. #define RMTAB_H
  9.  
  10. /*
  11.  * Location of rmtab file. /etc/rmtab is the standard on most systems.
  12.  */
  13. #include <paths.h>
  14. #ifndef _PATH_RMTAB
  15. #define _PATH_RMTAB    "/etc/rmtab"
  16. #endif
  17.  
  18. extern _PRO(void     rmtab_add_client,  (dirpath, struct svc_req *)    );
  19. extern _PRO(mountlist *    rmtab_lst_client,  (void)            );
  20. extern _PRO(void    rmtab_del_client,  (dirpath, struct svc_req *)    );
  21. extern _PRO(void    rmtab_mdel_client, (struct svc_req *rqstp)    );
  22.  
  23. #endif /* RMTAB_H */
  24.  
  25.